home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 4
/
Aminet 4 - November 1994.iso
/
aminet
/
comm
/
bbs
/
fax_it_cnet.lzh
/
FAX-IT
/
answer.gpf
next >
Wrap
Text File
|
1994-08-20
|
516b
|
27 lines
/*
* FAX just came in!
*
* If you use this script with the GPFax program, incoming FAXes will be
* logged to your standard FAX log that is created with in the FAX-IT
* programs.
*
* See the GPFax manual for instructions on how to use this script when
* a FAX comes in.
*/
options results
Address CnetRexx0
LogFAX = 'Logs:FAX.log'
if ~exists(LogFAX) then do
open(LogFile,LogFAX,'Write')
close(LogFile)
end
open(file,'systext:Logs/FAX','APPEND')
ReportLog R 8
text=result
writeln(file,text)
close(file)